home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form ComingSplash
- BackColor = &H00000000&
- BorderStyle = 5 'Sizable ToolWindow
- ClientHeight = 5040
- ClientLeft = 48
- ClientTop = 48
- ClientWidth = 7200
- ControlBox = 0 'False
- Icon = "SDKSplash.frx":0000
- KeyPreview = -1 'True
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- Palette = "SDKSplash.frx":014A
- PaletteMode = 2 'Custom
- Picture = "SDKSplash.frx":3749
- ScaleHeight = 5040
- ScaleWidth = 7200
- ShowInTaskbar = 0 'False
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command1
- BackColor = &H00C0FFFF&
- Height = 492
- Left = 600
- Picture = "SDKSplash.frx":6D48
- Style = 1 'Graphical
- TabIndex = 5
- ToolTipText = "Order Upgradations"
- Top = 3360
- Width = 852
- End
- Begin VB.Image Image3
- Height = 492
- Left = 360
- Picture = "SDKSplash.frx":718A
- Top = 4440
- Width = 2052
- End
- Begin VB.Image Image2
- Height = 1212
- Left = 3000
- Picture = "SDKSplash.frx":8749
- Stretch = -1 'True
- Top = 2400
- Width = 1212
- End
- Begin VB.Image Image1
- Height = 1176
- Left = 960
- Picture = "SDKSplash.frx":A5F3
- Stretch = -1 'True
- Top = 3120
- Width = 1572
- End
- Begin VB.Label Label4
- BackStyle = 0 'Transparent
- Caption = "(1)Windows O/S and Windows CE ASR (2) Web Programs (3) Telephony programs support upgradation"
- BeginProperty Font
- Name = "Verdana"
- Size = 10.8
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H0080FF80&
- Height = 852
- Index = 4
- Left = 3000
- TabIndex = 4
- Top = 3600
- Width = 4212
- End
- Begin VB.Label Label4
- BackStyle = 0 'Transparent
- Caption = "English, Indian and Foreign Language Word-Processor's.(With Intelligent Dialogues)"
- BeginProperty Font
- Name = "Verdana"
- Size = 10.8
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H0080FF80&
- Height = 1212
- Index = 2
- Left = 4320
- TabIndex = 3
- Top = 2280
- Width = 2652
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "At very small additive cost to purchasers of this version ."
- BeginProperty Font
- Name = "Arial Black"
- Size = 7.8
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 732
- Left = 600
- TabIndex = 2
- Top = 2640
- Width = 2052
- End
- Begin VB.Shape Shape1
- BorderColor = &H00FFFF80&
- BorderWidth = 3
- FillColor = &H00C0FFFF&
- FillStyle = 0 'Solid
- Height = 1932
- Left = 120
- Shape = 2 'Oval
- Top = 2400
- Width = 2772
- End
- Begin VB.Label Label4
- BackStyle = 0 'Transparent
- Caption = "More feature-rich and flexible Artificial Intelligence Add-on."
- BeginProperty Font
- Name = "Verdana"
- Size = 10.8
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H0080FF80&
- Height = 612
- Index = 3
- Left = 3120
- TabIndex = 1
- Top = 1440
- Width = 3852
- End
- Begin VB.Label Label4
- BackStyle = 0 'Transparent
- Caption = "Coming Upgradations ..."
- BeginProperty Font
- Name = "Tahoma"
- Size = 16.2
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H0000FFFF&
- Height = 852
- Index = 1
- Left = 240
- TabIndex = 0
- Top = 1440
- Width = 2292
- End
- Attribute VB_Name = "ComingSplash"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- OrderForm.Show
- End Sub
- Private Sub Form_Click()
- Unload ComingSplash
- End Sub
- Private Sub Form_KeyPress(KeyAscii As Integer)
- Unload ComingSplash
- End Sub
- Private Sub Image1_Click()
- Unload ComingSplash
- End Sub
- Private Sub Image2_Click()
- Unload ComingSplash
- End Sub
- Private Sub Label1_Click()
- Unload ComingSplash
- End Sub
- Private Sub Label2_Click()
- Unload ComingSplash
- End Sub
- Private Sub Label3_Click()
- Unload ComingSplash
- End Sub
- Private Sub Label4_Click(Index As Integer)
- Unload ComingSplash
- End Sub
-